home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / sikids2.dir / 00002_Identification.ls < prev    next >
Encoding:
Text File  |  1996-04-18  |  861 b   |  38 lines

  1. on identifySystem
  2.   global gSISystem
  3.   if (the machineType >= 1) and (the machineType <= 255) then
  4.     set gSISystem to "MAC"
  5.   else
  6.     if the machineType = 256 then
  7.       set gSISystem to "WIN"
  8.     else
  9.       set gSISystem to "UNKNOWN"
  10.     end if
  11.   end if
  12. end
  13.  
  14. on identifyVideo
  15.   global gSISystem, gSIVideo, gSIVideoPath
  16.   if gSISystem = "MAC" then
  17.     set gSIVideo to "QT"
  18.   else
  19.     if gSISystem = "WIN" then
  20.       if fileExists(gSIVideoPath & "INTRO.MOV") then
  21.         set gSIVideo to "QT"
  22.       else
  23.         if fileExists(gSIVideoPath & "INTRO.MPG") then
  24.           set gSIVideo to "MPEG"
  25.         else
  26.           if fileExists(gSIVideoPath & "INTRO.AVI") then
  27.             set gSIVideo to "VFW"
  28.           else
  29.             set gSIVideo to "UNKNOWN"
  30.           end if
  31.         end if
  32.       end if
  33.     else
  34.       set gSIVideo to "UNKNOWN"
  35.     end if
  36.   end if
  37. end
  38.